home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / decrementvalue.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  518 b   |  20 lines

  1. <!--- This shows the use of decrementValue --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. DecrementValue Example
  6. </TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11. <H3>DecrementValue Example</H3>
  12.  
  13. <P>Returns the integer part of a number decremented by one.
  14. <P>DecrementValue(0): <CFOUTPUT>#DecrementValue(0)#</CFOUTPUT>
  15. <P>DecrementValue("1"): <CFOUTPUT>#DecrementValue("1")#</CFOUTPUT>
  16. <P>DecrementValue(123.35): <CFOUTPUT>#DecrementValue(123.35)#</CFOUTPUT>
  17.  
  18. </BODY>
  19. </HTML>       
  20.